home *** CD-ROM | disk | FTP | other *** search
- function create_txt(tooltip_txt)
- {
- var _loc1_ = _root;
- _loc1_.tooltip.createTextField("head",1,0,20,breite,10);
- _loc1_.tooltip.head.multiline = true;
- _loc1_.tooltip.head.selectable = false;
- _loc1_.tooltip.head.wordWrap = true;
- _loc1_.tooltip.head.autoSize = "left";
- _loc1_.tooltip.head.html = true;
- _loc1_.tooltip.head.htmlText = tooltip_txt;
- _loc1_.tooltip.head.setTextFormat(txtFormat);
- _loc1_.tooltip.breite = 200;
- _loc1_.tooltip.back._width = _loc1_.tooltip.breite;
- _loc1_.tooltip.hoehe = _loc1_.tooltip.head.textHeight;
- _loc1_.tooltip.back._height = _loc1_.tooltip.hoehe + 5;
- }
- a_font = "<font color= \'#FF0000\'>";
- b1_font = "<b>";
- b2_font = "</b>";
- e_font = "</font>";
- d_break = "<br>";
- txtFormat = new TextFormat();
- txtFormat.size = 10;
- txtFormat.font = "Arial";
- breite = 200;
- startToolTip = function()
- {
- if(_root.tooltip.head.text.length > 2)
- {
- _root.tooltip._visible = true;
- }
- };
- stopToolTip = function()
- {
- _root.tooltip._visible = false;
- _root.tooltip.head.htmlText = "";
- };
- stop();
-